/* ===========================
   TEMPLATEBRAS - DELIVERY THEME (rev)
   =========================== */
:root{
  --bg:#f5f6f8;
  --paper:#ffffff;
  --ink:#0f172a;
  --muted:#6b7280;
  --brand:#ef4444;
  --brand-ink:#991b1b;
  --ok:#22c55e;
  --ring:#e5e7eb;
  --shadow:0 10px 24px rgba(2,6,23,.08), 0 4px 10px rgba(2,6,23,.04);
  --radius:16px;
  --drawer-w:360px;
  --menu-w:320px;
  --tr:.25s ease;
  --container:1140px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0; background:var(--bg); color:var(--ink);
  font-family:"Inter",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Helvetica,Arial;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
  padding-bottom:env(safe-area-inset-bottom,0);
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block;border-radius:12px}
button{font:inherit}

/* ======= LAYOUT ======= */
.container{
  max-width:var(--container);
  margin:0 auto;
  padding:24px 18px 120px;
}

/* ===========================
   DRAWER: MENU LATERAL (ESQ)
   =========================== */
#sidebarDrawer{
  position:fixed; inset:auto auto 0 0; top:0;
  width:min(86vw, var(--menu-w)); height:100vh;
  background:var(--paper); color:var(--ink); z-index:9999;
  box-shadow:12px 0 28px rgba(2,6,23,.16);
  border-right:1px solid var(--ring);
  transform:translateX(-100%); transition:transform var(--tr);
  border-radius:0 16px 16px 0; overflow:auto;
}
#sidebarDrawer.aberta{ transform:translateX(0) }

.sb-header{display:flex;align-items:center;gap:10px;padding:18px 18px 10px}
.logo{width:26px;height:26px;display:grid;place-items:center;background:var(--brand);color:#fff;border-radius:8px;font-weight:800}
.brand{font-weight:800}
.sb-section{padding:14px 18px;border-top:1px solid var(--ring)}
.sb-muted{color:var(--muted);font-size:12px;letter-spacing:.02em;text-transform:uppercase;margin-bottom:8px}
.sb-section ul{list-style:none;padding:0;margin:0;display:grid;gap:8px}
.sb-section ul li a{display:block;padding:8px 10px;border-radius:12px}
.sb-section ul li a:hover{background:#f3f4f6}
.open-hours{width:100%;border-collapse:collapse;font-size:14px}
.open-hours td{padding:4px 0}
.open-hours td:first-child{font-weight:700}
.sb-footer{color:var(--muted);font-size:12px;padding:12px 18px 16px}

/* ===========================
   HEADER / STATUS / NOTIF
   =========================== */
.main{min-width:0}
#Header1{padding: 0;}
/* Logo do cabeçalho */
#Header1 .brand { margin:0; }
#Header1 .brand img{
  max-height: 40px;   /* combina com displayHeight=40 */
  height: auto;
  width: auto;
  border-radius: 0;   /* sem cantos arredondados no logo */
}
/* Header (duas linhas: brand+search em cima | abas embaixo) */
.header{
  position: sticky;
  top: 0;
  z-index: 1200;                 /* acima do conteúdo */
  background: #fff;
  border-bottom: 1px solid #eee;
  backdrop-filter: saturate(180%) blur(6px);

  /* grid em 2 linhas */
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "brand search"
    "tabs  tabs";
  row-gap: 8px;

  padding: 10px 18px 6px;
  margin-bottom: 12px;
       border-radius: 10px;
}

/* Linha 1: brand à esquerda */
.header .brandline{
  grid-area: brand;
  display:flex; align-items:center; gap:12px;
}
.header .brandline .logo{
  width:26px;height:26px;display:grid;place-items:center;
  background:var(--brand);color:#fff;border-radius:8px;font-weight:900
}
.header .brandline .brand{font-size:16px;font-weight:800;margin:0}

/* Selo de status (se você usar) */
.header .status-slot{display:flex; align-items:center}
.header .status-slot .status-data{display:none}
.pill{
  border:2px solid var(--ok); color:var(--ok);
  padding:7px 5px; border-radius:10px; font-weight:800; font-size:12px;
}
.pill.closed{ background:var(--brand)!important;color:#fff!important;border-color:var(--brand)!important; }

/* Notificações (se você usar) */
.header .notif-slot{display:flex; align-items:center}
.header .notif-slot .notif-content{display:none}
.icon-btn,.menu-btn{
  width:38px;height:38px;display:grid;place-items:center;
  border-radius:12px;background:var(--paper);box-shadow:var(--shadow);border:0;cursor:pointer
}
.icon-btn .icon{width:22px;height:22px;stroke:#0f172a}
.menu-btn{display:grid}

/* Popover de notificação */
#notif-pop{
  position:fixed; z-index:10000; min-width:260px; max-width:340px;
  background:var(--paper); color:var(--ink); border:1px solid var(--ring);
  border-radius:12px; box-shadow:var(--shadow); padding:12px; font-size:14px;
}

/* ====== SEARCHFAB (versão reforçada) ====== */
:root{
  --ink:#111827; --paper:#fff; --line:#e5e7eb;
  --fab-size:38px; --pill-h:48px; --gap:8px;
  --shadow-1:0 2px 10px rgba(0,0,0,.08);
  --shadow-2:0 12px 28px rgba(0,0,0,.10);
}

/* Texto apenas para leitores (compat amplo) */
.sr-only{
  position:absolute !important; width:1px !important; height:1px !important;
  padding:0 !important; margin:-1px !important; overflow:hidden !important;
  clip:rect(0 0 0 0) !important; clip-path:inset(50%) !important;
  white-space:nowrap !important; border:0 !important;
}

/* Padrão global do SearchFab (fora do header ficaria fixo) */
.searchfab{
  position:fixed; top:16px; right:16px; z-index:2147483000;
  display:inline-flex; align-items:center; gap:10px; height:var(--pill-h);
}

/* ——— OVERRIDE quando o SearchFab está DENTRO do header ——— */
.header .searchfab{
  grid-area: search;
  position: static !important;  /* deixa de ser fixo */
  top:auto !important; right:auto !important; bottom:auto !important; left:auto !important;
  justify-self: end;
}

.searchfab .searchfab__toggle{
  -webkit-appearance:none !important; appearance:none !important;
  width:var(--fab-size); height:var(--fab-size);
  border:1px solid var(--line) !important; border-radius:9999px !important;
  background:var(--paper) !important; color:var(--ink) !important;
  display:inline-flex; align-items:center; justify-content:center;
  cursor:pointer; box-shadow:var(--shadow-1);
  padding:0 !important; line-height:1 !important;
}
.searchfab .searchfab__toggle:hover{ filter:brightness(.98); }
.searchfab .searchfab__toggle:focus-visible{
  outline:none; box-shadow:0 0 0 3px color-mix(in srgb, var(--ink) 14%, transparent), var(--shadow-1);
}

/* Caixa / pílula */
.searchfab .searchfab__box[hidden]{ display:none !important; }
.searchfab .searchfab__form{
  position:relative; width:min(560px, calc(100vw - 120px));
  background:var(--paper); border:1px solid var(--line); border-radius:14px;
  box-shadow:var(--shadow-2);
}
.searchfab .searchfab__input{
  -webkit-appearance:none !important; appearance:none !important;
  width:100%; height:var(--pill-h);
  padding:0 calc(var(--fab-size) + 6px) 0 56px !important;
  border:0 !important; outline:0 !important; background:transparent !important;
  color:var(--ink); font:inherit; box-sizing:border-box; direction:ltr; text-indent:0 !important;
}
.searchfab .searchfab__input::placeholder{
  color: color-mix(in srgb, var(--ink) 45%, transparent);
}
.searchfab .searchfab__input:focus-visible{
  outline:none; box-shadow:0 0 0 3px color-mix(in srgb, var(--ink) 12%, transparent);
  border-radius:inherit;
}
.searchfab .searchfab__icon{
  position:absolute; left:16px; top:50%; transform:translateY(-50%);
  color: color-mix(in srgb, var(--ink) 70%, transparent);
  display:inline-flex; pointer-events:none; z-index:1;
}
.searchfab .searchfab__close{
  -webkit-appearance:none !important; appearance:none !important;
  position:absolute; right:6px; top:50%; transform:translateY(-50%);
  width:calc(var(--fab-size) - 6px); height:calc(var(--fab-size) - 6px);
  border:0 !important; border-radius:9999px; background:transparent !important;
  color: color-mix(in srgb, var(--ink) 85%, transparent); cursor:pointer;
  display:inline-grid; place-items:center;
}
.searchfab .searchfab__close:hover{ background: color-mix(in srgb, var(--ink) 6%, var(--paper)); }
.searchfab .searchfab__close:focus-visible{
  outline:none; box-shadow:0 0 0 3px color-mix(in srgb, var(--ink) 14%, transparent);
}

/* Desktop: pílula abre à esquerda da bolha (usa o header como container) */
@media (min-width:1025px){
  .searchfab .searchfab__box{
    position:absolute; top:50%;
    right: calc(var(--fab-size) + var(--gap));
    transform:translateY(-50%); opacity:0; visibility:hidden;
    transition: opacity .18s ease, visibility .18s step-end, transform .18s ease;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,.08));
    z-index: 99999;
  }
  .searchfab.is-open .searchfab__box{
    opacity:1; visibility:visible; transform:translateY(-50%);
  }
}

/* Mobile: overlay full-screen */
@media (max-width:1024px){
  .searchfab{ top:12px; right:12px; }
  .header .searchfab{ justify-self:end; } /* mantém posição no header */
  .searchfab .searchfab__box{
    position:fixed; inset:0; padding:max(12px, env(safe-area-inset-top)) 12px 12px 12px;
    background:var(--paper); display:none; z-index:2147483000;
  }
  .searchfab.is-open .searchfab__box{ display:block; }
  .searchfab .searchfab__form{ width:100%; max-width:none; border-radius:14px; }
  .searchfab .searchfab__input{ height:52px; }
  .searchfab .searchfab__close{ right:10px; }
  .searchfab .searchfab__icon{ left:16px; }
}

/* iOS: evitar zoom ao focar */
@supports (-webkit-touch-callout: none){
  .searchfab .searchfab__input{ font-size:16px; }
}

/* ====== Linha 2 do header: abas de categorias (Label) ====== */

/* garante que o widget Label ocupe a área "tabs" */
.header .widget.Label{ grid-area: tabs; margin:0; }

/* conteúdo das categorias (apresentação como faixa do header) */
.header .CLOUD-label-widget-content,
.header .cloud-label-widget-content{
  grid-area: tabs;
  position: static;

  display:flex; align-items:center; gap:26px;

  margin: 0 -18px;                 /* full-bleed dentro do header */
  padding: 6px 18px 10px;
  border-top: 1px solid var(--ring);
  background: var(--paper);

  overflow: auto;                  /* mobile: rolagem horizontal */
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
}

/* itens/links */
.header .label-size{ flex:0 0 auto; }
.header .label-size > a,
.header .label-size > span{
  display:inline-block;
  font-weight:700;
  padding:10px 0px;
  color:#374151;
  text-decoration:none;
}
.header .label-size > a:hover{ color:var(--ink); }
.header .label-size > span{
  color:var(--ink);
  position:relative;
}
.header .label-size > span::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-8px;
  height:3px; background:var(--brand); border-radius:999px;
}

/* desktop: pode quebrar linha, sem scroll horizontal */
@media (min-width:1024px){
  .header .CLOUD-label-widget-content,
  .header .cloud-label-widget-content{
    white-space: normal;
    overflow: visible;
    flex-wrap: wrap;
    gap: 24px;
  }
}







/* ===========================
   ABAS / TÍTULOS
   =========================== */
.tabs{display:flex;gap:26px;align-items:center;margin:8px 0 18px;flex-wrap:wrap}
.tab{font-weight:800;padding:10px 2px;position:relative;color:#374151}
.tab.active{color:var(--ink)}
.tab.active::after{content:"";position:absolute;left:0;right:0;height:3px;background:var(--brand);bottom:-8px;border-radius:999px}
.section-title{font-size:20px;font-weight:800;margin:18px 0 10px}

/* ===========================
   CARDS DE PRODUTO
   =========================== */
.card{
  background:var(--paper); border-radius:var(--radius); box-shadow:var(--shadow);
  padding:14px; display:grid; grid-template-columns:1fr 180px; gap:14px; align-items:center;
       margin-top: 15px;
}
.card + .card{margin-top:14px}
.card .title{font-size:18px;font-weight:900;margin:2px 0}
.card .desc{color:var(--muted);font-size:14px;line-height:1.5;max-width:60ch}
.card .price,.preco-produto{color:var(--brand);font-weight:900;margin-top:10px}
.card img{width:180px;height:120px;object-fit:cover;border-radius:12px;justify-self:end}
.card .add-carrinho{margin-top:8px;border:0;background:var(--brand);color:#fff;border-radius:10px;height:38px;padding:0 12px;font-weight:800;cursor:pointer}
.card .add-carrinho:hover{filter:brightness(.95)}

/* Página do produto */
#produto-in{display:grid;grid-template-columns:280px 1fr;gap:16px;background:var(--paper);padding:16px;border-radius:var(--radius);box-shadow:var(--shadow)}
#produto-in .produto-img{width:100%;height:220px;object-fit:cover}
#produto-in .nome-produto{font-size:20px;font-weight:900;display:block;margin-bottom:6px}
#produto-in .preco-produto{display:inline-block;margin:6px 0 12px}
.controles{display:flex;align-items:center;gap:12px;margin:12px 0}
.stepper{display:grid;grid-template-columns:36px 52px 36px;border:1px solid var(--ring);border-radius:12px;overflow:hidden;height:40px}
.stepper button{border:0;background:#eef0f3;font-weight:900;cursor:pointer}
.stepper input{border:0;width:52px;text-align:center;outline:none}
#produto-in .add-carrinho{border:0;background:var(--brand);color:#fff;border-radius:12px;height:40px;padding:0 16px;font-weight:900;cursor:pointer}
#obs{width:100%;min-height:80px;border:1px solid var(--ring);border-radius:12px;padding:10px;resize:vertical}

.entrar-produto{
    border: 0;
    background: var(--brand);
    color: #fff;
    border-radius: 4px;
    height: 40px;
    padding: 5px 16px;
    font-weight: 900;
    cursor: pointer;
}


/* ===========================
   CARRINHO (DRAWER DIR)
   =========================== */
#carrinho-flutuante{
  position:fixed; top:0; right:0; width:min(90vw,var(--drawer-w)); height:100vh;
  background:var(--paper); color:var(--ink); z-index:9999;
  display:flex; flex-direction:column;
  border-left:1px solid var(--ring);
  box-shadow:-12px 0 28px rgba(2,6,23,.16);
  transform:translateX(100%); transition:transform var(--tr);
}
#carrinho-flutuante.aberto{ transform:translateX(0) }
#carrinho-flutuante>header{
  padding:14px 16px;font-weight:900;border-bottom:1px solid var(--ring);
  display:flex;align-items:center;justify-content:space-between;gap:8px
}
#carrinho-flutuante .btn-close{border:0;background:transparent;cursor:pointer;border-radius:8px;width:36px;height:36px;font-size:22px;line-height:1}
#carrinho-lista{flex:1;overflow:auto;padding:14px 16px}
#carrinho-footer{border-top:1px solid var(--ring);padding:12px 16px;display:grid;gap:10px}
#carrinho-total{font-weight:900;font-size:18px}
#confirmar{background:var(--ok);color:#fff;border:0;border-radius:12px;height:44px;font-weight:900;cursor:pointer}
#limpar{background:#fee2e2;color:var(--brand-ink);border:0;border-radius:12px;height:36px;cursor:pointer}

.item-carrinho{display:grid;grid-template-columns:1fr auto;gap:8px;align-items:center;padding:10px 0;border-bottom:1px dashed #e9e9e9}
.item-carrinho .qtd{display:inline-grid;grid-template-columns:28px 40px 28px;border:1px solid var(--ring);border-radius:10px;overflow:hidden}
.item-carrinho .qtd button{border:0;background:#eef0f3;cursor:pointer}
.item-carrinho .qtd input{border:0;text-align:center;width:40px}

/* Botão flutuante (sempre visível) */
#btn-sacola{
  position:fixed; right:18px; bottom:18px;
  display:flex; align-items:center; gap:8px;
  padding:10px 16px; height:50px; border:0; border-radius:999px; cursor:pointer;
  background:#fff; color:#000; font-weight:800; z-index:9998;
  box-shadow:0 8px 22px rgba(2,6,23,.25), inset 0 1px 0 rgba(255,255,255,.05);
}
#btn-sacola #contador-itens{
  display:inline-flex; align-items:center; justify-content:center;
  min-width:26px; height:26px; padding:0 6px; border-radius:999px; background:var(--brand); color:#fff; font-weight:900;
  box-shadow:0 2px 0 rgba(0,0,0,.15);
}

/* ===========================
   OVERLAY
   =========================== */
#drawer-overlay{
  position:fixed; inset:0; background:rgba(2,6,23,.35);
  opacity:0; visibility:hidden; transition:opacity var(--tr);
  z-index:9998;
}
#drawer-overlay.show{opacity:1; visibility:visible}

/* ===========================
   RESPONSIVO
   =========================== */
@media (max-width:768px){
  .card{grid-template-columns:1fr;gap:10px}
  .card img{width:100%;height:180px;justify-self:stretch}
  #produto-in{grid-template-columns:1fr}
  #produto-in .produto-img{height:260px}
}
@media (max-width:480px){
  .h1{font-size:28px}
  .tabs{gap:18px}
  .section-title{font-size:18px}
}

/* ===== Labels viram abas ===== */
 #Cardapio > h2{
     font-size:32px;
     font-weight:800;
     margin:4px 0 12px;
}
 #Cardapio .CLOUD-label-widget-content, #Cardapio .cloud-label-widget-content{
     display:flex;
     align-items:center;
     gap:26px;
     margin:8px 0 18px;
     padding-bottom:4px;
     border-bottom:1px solid #e5e7eb;
     flex-wrap:wrap;
}
 #Cardapio .label-size{
     display:block 
}
 #Cardapio .label-size > a, #Cardapio .label-size > span{
     display:inline-block;
     font-weight:700;
     padding:10px 2px;
     position:relative;
     color:#374151;
     text-decoration:none;
}
 #Cardapio .label-size > a:hover{
     color:var(--ink) 
}
 #Cardapio .label-size > span{
     color:var(--ink) 
}
 #Cardapio .label-size > span::after{
     content:"";
     position:absolute;
     left:0;
     right:0;
     bottom:-8px;
     height:3px;
     background:var(--brand);
     border-radius:999px;
}
 @media (max-width:640px){
     #Cardapio .CLOUD-label-widget-content, #Cardapio .cloud-label-widget-content{
         flex-wrap:nowrap;
         overflow:auto;
         -webkit-overflow-scrolling:touch;
         gap:18px;
         padding-bottom:10px;
         margin-right:-12px;
    }
     #Cardapio .label-size{
         flex:0 0 auto 
    }
}




/* ===== Opções do produto (item) ===== */
#extras-box{ margin:12px 0 10px; display:grid; gap:12px }
.opt-group{ border:1px solid var(--ring); border-radius:12px; padding:10px; background:#fff }
.opt-title{ font-weight:800; margin-bottom:8px }
.opt-list{ display:flex; flex-wrap:wrap; gap:10px }
.opt-chip{
  display:inline-grid; grid-auto-flow:column; align-items:center; gap:6px;
  border:1px solid var(--ring); padding:8px 10px; border-radius:10px; cursor:pointer;
}
.opt-chip input{ margin:0 }
.opt-extra{ color:var(--muted); font-size:12px; }





/* ===== Carrinho: tabs + formulário ===== */
#cart-tabs{display:flex;gap:8px;align-items:center;padding:8px 12px;border-bottom:1px solid var(--ring)}
#cart-tabs .tab-btn{
  flex:1;height:36px;border:0;cursor:pointer;font-weight:800;border-radius:10px;
  background:#eef0f3;
}
#cart-tabs .tab-btn.active{background:var(--paper);box-shadow:var(--shadow)}
#tab-itens, #tab-finalizar{display:none}
#tab-itens.active, #tab-finalizar.active{display:flex;flex-direction:column;min-height:0}
#tab-finalizar{padding:14px 16px;gap:10px;overflow:auto}
#cart-form .row{display:grid;gap:8px}
#cart-form label{font-weight:700;font-size:14px}
#cart-resumo{border-top:1px solid var(--ring);padding-top:8px;color:var(--muted);font-size:14px;white-space: normal; overflow-wrap: anywhere; word-break: break-word;}
#cart-resumo{
  display:flex;
  flex-wrap:wrap;
  gap:6px 10px;         /* espaço entre itens */
  align-items:center;
}
#cart-resumo .resumo-item{
  display:inline-flex;
  align-items:center;
  overflow-wrap:anywhere;
}
#cart-resumo .resumo-item + .resumo-item::before{
  content:"•";
  margin:0 8px;
  opacity:.6;
}
#btn-enviar-wa{background:var(--ok);color:#fff;border:0;border-radius:12px;height:44px;font-weight:900;cursor:pointer}
#btn-ir-finalizar{background:var(--ok);color:#fff;border:0;border-radius:12px;height:44px;font-weight:900;cursor:pointer}



/* Esconde a seção/Widget de configuração no site publicado */
#configuracao,
#configuracao.section,
#configuracao .widget,
#configuracao .widget-content,
#configuracao .widget-content ul,
#LinkList6,
#LinkList6 .widget-content,
#LinkList6 .widget-content ul{
  display:none !important;
}

  :root{
    --ad-primary:#ef4444;   /* cor do botão/badge */
    --ad-text:#1f2937;      /* texto principal */
    --ad-muted:#6b7280;     /* texto secundário */
    --ad-bg:#ffffff;        /* fundo do card */
  }

  /* card base */
  .ad-card{
    display:flex; align-items:center; gap:14px;
    padding:14px 16px; border:1px solid #f3f4f6; border-radius:16px;
    background:var(--ad-bg); box-shadow:0 10px 30px rgba(0,0,0,.08);
    position:relative; transition:.2s ease; max-width:540px;
  }
  .ad-card:hover{ transform:translateY(-2px); box-shadow:0 12px 36px rgba(0,0,0,.12); }

  .ad-img{ width:120px; height:90px; object-fit:cover; border-radius:12px; flex:0 0 auto; }
  .ad-badge{
    position:absolute; top:12px; left:12px;
    background:var(--ad-primary); color:#fff; font-size:12px; font-weight:700;
    padding:4px 8px; border-radius:999px;
  }
  .ad-title{ margin:0 0 4px; font-size:18px; color:var(--ad-text); font-weight:800; }
  .ad-desc{ margin:0 0 10px; font-size:14px; color:var(--ad-muted); display:block; }
  .ad-btn{
    display:inline-block; padding:10px 14px; border-radius:12px;
    background:var(--ad-primary); color:#fff; font-weight:700; text-decoration:none;
  }
  .ad-close{
    position:absolute; top:8px; right:8px; width:28px; height:28px;
    border:0; border-radius:999px; background:#f3f4f6; color:#374151;
    cursor:pointer; font-size:18px; line-height:28px;
  }
  .ad-close:hover{ background:#e5e7eb; }

  /* melhora o layout padrão do widget */
  .widget.Image .widget-content { display:inline-block; }
  .widget.Image br { display:none; }

  @media (max-width:480px){
    .ad-img{ width:96px; height:80px; }
    .ad-title{ font-size:16px; }
  }

/* === Ads flutuando na tela === */
  #Ads{
    position: fixed;
    left: 16px;          /* mude para right:16px se quiser no canto direito */
    bottom: 16px;        /* distância da base */
    z-index: 9999;
    width: min(92vw, 360px);
    max-height: calc(100vh - 32px); /* não passa da altura da tela */
    overflow: auto;                   /* vira scroll se tiver muitos cards */
    padding-right: 4px;               /* espaço pro scroll */
  }
  #Ads .widget{ margin: 8px 0; }
  #Ads .ad-card{ max-width: 100%; }   /* garante que o card respeite a largura */

  /* Se no mobile existir um botão flutuante (ex: "Pedido") perto da borda,
     sobe um pouco a seção para não sobrepor */
  @media (max-width: 640px){
    #Ads{ bottom: 88px; }  /* ajuste esse valor conforme necessário */
  }

  /* Se preferir no canto direito, descomente:
  #Ads{ left:auto; right:16px; }
  */

/* ===== Inputs / textarea / stepper / botões ===== */
input[type="text"], input[type="number"], select{
  height:40px; padding:0 10px; border:1px solid var(--ring); border-radius:12px; background:#fff; outline:none;
}
textarea{ width:100%; min-height:100px; padding:10px; border:1px solid var(--ring); border-radius:12px; resize:vertical; background:#fff; outline:none; }
.stepper{ display:grid; grid-template-columns:36px 52px 36px; border:1px solid var(--ring); border-radius:12px; overflow:hidden; height:40px }
.stepper button{ border:0; background:#eef0f3; font-weight:900; cursor:pointer }
.stepper input{ border:0; width:52px; text-align:center; outline:none }
.add-carrinho{ border:0; background:var(--brand); color:#fff; border-radius:12px; height:40px; padding:0 16px; font-weight:900; cursor:pointer }
.add-carrinho:hover{ filter:brightness(.95) }

.row{display:flex;align-items:center;gap:10px}
.muted{color:var(--muted)}
.divider{height:1px;background:var(--ring);margin:8px 0}
.widget-item-control{display:none}
