html{
    width:100%;
    min-height:100%;
    scroll-behavior:smooth;
}

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    width:100%;
    min-height:100vh;
    margin:0;
    padding:0;
    background:#f4f4f4;
    color:#111;
    font-family:Arial, Helvetica, sans-serif;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    overflow-x:hidden;
}

body.totem-modal-aberto,
body.totem-carrinho-aberto{
    overflow:hidden;
}

button,
input,
select,
textarea{
    font:inherit;
}

button{
    border:0;
    outline:0;
    cursor:pointer;
    -webkit-tap-highlight-color:transparent;
}

input,
select,
textarea{
    outline:0;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{
    outline:3px solid rgba(215,255,63,.55);
    outline-offset:2px;
}

img{
    display:block;
    max-width:100%;
}

a{
    color:inherit;
    text-decoration:none;
}

.main{
    width:100%;
    min-height:100vh;
}

.hidden,
.esconder{
    display:none !important;
}

#loading{
    display:none;
    position:fixed;
    inset:0;
    z-index:999999;
    align-items:center;
    justify-content:center;
    padding:20px;
    background:rgba(5,5,5,.78);
    backdrop-filter:blur(5px);
    -webkit-backdrop-filter:blur(5px);
}

#loading.active{
    display:flex;
}

.totem-loading{
    min-width:160px;
    min-height:120px;
    padding:24px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:26px;
    background:#111;
    color:#fff;
    box-shadow:0 25px 70px rgba(0,0,0,.35);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:15px;
}

.totem-loading-spinner{
    width:38px;
    height:38px;
    border:4px solid rgba(255,255,255,.14);
    border-top-color:#d7ff3f;
    border-radius:50%;
    animation:totemLoading .7s linear infinite;
}

.totem-loading span{
    font-size:13px;
    font-weight:900;
}

@keyframes totemLoading{
    to{
        transform:rotate(360deg);
    }
}

.viva-alerta-area{
    position:fixed;
    top:-130px;
    left:0;
    z-index:9999999;
    width:100%;
    padding:14px;
    display:flex;
    justify-content:center;
    pointer-events:none;
    transition:top .28s ease;
}

.viva-alerta{
    min-width:240px;
    max-width:90%;
    min-height:54px;
    padding:14px 20px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    font-size:14px;
    line-height:1.4;
    font-weight:800;
    box-shadow:0 15px 45px rgba(0,0,0,.24);
}

.bg-verde{
    background:#27A844;
}

.bg-vermelho{
    background:#DC3546;
}

.bg-azul{
    background:#007AFF;
}

.bg-laranja{
    background:#FEC107;
    color:#111;
}

.totem-area{
    width:100%;
    min-height:100vh;
    background:
        radial-gradient(circle at 92% 2%, rgba(215,255,63,.08), transparent 20%),
        #f4f4f4;
}

.totem-topo{
    position:sticky;
    top:0;
    z-index:50;
    width:100%;
    padding:14px 22px;
    background:rgba(7,7,7,.96);
    border-bottom:1px solid rgba(255,255,255,.07);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    box-shadow:0 5px 22px rgba(0,0,0,.10);
}

.totem-topo-area{
    width:100%;
    max-width:1500px;
    min-height:64px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.totem-topo-empresa{
    min-width:0;
    display:flex;
    align-items:center;
    gap:13px;
}

.totem-topo-logo{
    width:58px;
    height:58px;
    min-width:58px;
    border-radius:18px;
    overflow:hidden;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.totem-topo-logo img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:5px;
}

.totem-topo-logo-sem-imagem{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#171717;
    color:#d7ff3f;
    font-size:22px;
}

.totem-topo-info{
    min-width:0;
}

.totem-topo-nome{
    max-width:600px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    color:#fff;
    font-size:20px;
    line-height:1.15;
    font-weight:900;
}

.totem-topo-status{
    margin-top:6px;
    display:flex;
    align-items:center;
    gap:7px;
    color:#aaa;
    font-size:11px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.totem-topo-status span{
    width:8px;
    height:8px;
    min-width:8px;
    border-radius:50%;
    background:#d7ff3f;
    box-shadow:0 0 0 4px rgba(215,255,63,.10);
}

.totem-topo-carrinho{
    position:relative;
    width:58px;
    height:58px;
    min-width:58px;
    border-radius:18px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:21px;
    transition:.18s ease;
}

.totem-topo-carrinho:hover{
    background:rgba(215,255,63,.13);
    border-color:rgba(215,255,63,.22);
    color:#d7ff3f;
}

.totem-topo-carrinho:active{
    transform:scale(.96);
}

.totem-topo-carrinho-qtd{
    position:absolute;
    top:-5px;
    right:-5px;
    min-width:23px;
    height:23px;
    padding:0 6px;
    border-radius:999px;
    background:#d7ff3f;
    color:#111;
    border:2px solid #070707;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:10px;
    font-weight:900;
}

.totem-content{
    width:100%;
    max-width:1500px;
    margin:0 auto;
    padding:24px 22px 60px;
}

.totem-apresentacao{
    position:relative;
    width:100%;
    min-height:190px;
    margin-bottom:22px;
    padding:36px 40px;
    overflow:hidden;
    border-radius:30px;
    background:
        radial-gradient(circle at 92% 20%, rgba(215,255,63,.16), transparent 24%),
        linear-gradient(135deg,#171717 0%,#080808 100%);
    border:1px solid rgba(255,255,255,.06);
    box-shadow:0 20px 50px rgba(0,0,0,.15);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.totem-apresentacao::before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    top:-160px;
    right:100px;
    border-radius:50%;
    background:#d7ff3f;
    opacity:.05;
}

.totem-apresentacao-info{
    position:relative;
    z-index:2;
    max-width:720px;
}

.totem-apresentacao-tag{
    min-height:29px;
    padding:0 14px;
    margin-bottom:14px;
    border-radius:999px;
    background:#d7ff3f;
    color:#111;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:10px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.7px;
}

.totem-apresentacao h1{
    color:#fff;
    font-size:38px;
    line-height:1.08;
    letter-spacing:-1px;
    font-weight:900;
}

.totem-apresentacao p{
    max-width:580px;
    margin-top:12px;
    color:#aaa;
    font-size:15px;
    line-height:1.55;
    font-weight:600;
}

.totem-apresentacao-icone{
    position:relative;
    z-index:2;
    width:92px;
    height:92px;
    min-width:92px;
    border-radius:28px;
    background:rgba(215,255,63,.11);
    border:1px solid rgba(215,255,63,.15);
    color:#d7ff3f;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:37px;
}

.totem-busca{
    position:relative;
    width:100%;
    margin-bottom:18px;
}

.totem-busca > i{
    position:absolute;
    top:50%;
    left:20px;
    z-index:2;
    transform:translateY(-50%);
    color:#777;
    font-size:16px;
    pointer-events:none;
}

.totem-busca input{
    width:100%;
    height:62px;
    padding:0 60px 0 52px;
    border:1px solid #dedede;
    border-radius:20px;
    background:#fff;
    color:#222;
    font-size:15px;
    font-weight:700;
    box-shadow:0 8px 25px rgba(0,0,0,.035);
    transition:.18s ease;
}

.totem-busca input::placeholder{
    color:#999;
    font-weight:600;
}

.totem-busca input:focus{
    border-color:#c6e92f;
    box-shadow:0 0 0 4px rgba(215,255,63,.18);
}

.totem-busca button{
    position:absolute;
    top:50%;
    right:11px;
    width:40px;
    height:40px;
    transform:translateY(-50%);
    border-radius:13px;
    background:#f0f0f0;
    color:#777;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.18s ease;
}

.totem-busca button:hover{
    background:#e6e6e6;
    color:#222;
}

.totem-categorias{
    width:100%;
    margin-bottom:30px;
    padding-bottom:3px;
    display:flex;
    align-items:center;
    gap:9px;
    overflow-x:auto;
    overscroll-behavior-x:contain;
    scrollbar-width:none;
}

.totem-categorias::-webkit-scrollbar{
    display:none;
}

.totem-categoria{
    flex:0 0 auto;
    min-height:45px;
    padding:0 20px;
    border:1px solid #ddd;
    border-radius:999px;
    background:#fff;
    color:#555;
    font-size:13px;
    font-weight:900;
    white-space:nowrap;
    transition:.18s ease;
}

.totem-categoria:hover{
    border-color:#bbb;
    color:#111;
}

.totem-categoria.active{
    background:#111;
    border-color:#111;
    color:#d7ff3f;
}

.totem-produtos-area{
    width:100%;
}

.totem-grupo{
    width:100%;
    margin-bottom:44px;
}

.totem-grupo:last-child{
    margin-bottom:0;
}

.totem-grupo-cabecalho{
    width:100%;
    margin-bottom:16px;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:20px;
}

.totem-grupo-cabecalho span{
    display:block;
    margin-bottom:4px;
    color:#999;
    font-size:9px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1px;
}

.totem-grupo-cabecalho h2{
    color:#222;
    font-size:24px;
    line-height:1.1;
    font-weight:900;
}

.totem-grupo-quantidade{
    color:#999;
    font-size:11px;
    font-weight:800;
    white-space:nowrap;
}

.totem-produtos{
    width:100%;
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:16px;
}

.totem-produto{
    min-width:0;
    overflow:hidden;
    border:1px solid #e4e4e4;
    border-radius:23px;
    background:#fff;
    box-shadow:0 8px 25px rgba(0,0,0,.04);
    transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.totem-produto:hover{
    transform:translateY(-3px);
    border-color:#d5d5d5;
    box-shadow:0 16px 38px rgba(0,0,0,.08);
}

.totem-produto.sem-estoque{
    opacity:.63;
}

.totem-produto.sem-estoque:hover{
    transform:none;
    box-shadow:0 8px 25px rgba(0,0,0,.04);
}

.totem-produto-botao{
    width:100%;
    height:100%;
    padding:0;
    background:transparent;
    color:inherit;
    text-align:left;
    display:block;
}

.totem-produto-botao:disabled{
    cursor:not-allowed;
}

.totem-produto-imagem{
    position:relative;
    width:100%;
    aspect-ratio:1/1;
    overflow:hidden;
    background:#f2f2f2;
}

.totem-produto-imagem img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .3s ease;
}

.totem-produto:not(.sem-estoque):hover .totem-produto-imagem img{
    transform:scale(1.035);
}

.totem-produto-sem-imagem{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#c8c8c8;
    font-size:36px;
    background:
        radial-gradient(circle at center, #fff, #eeeeee);
}

.totem-produto-indisponivel{
    position:absolute;
    top:12px;
    left:12px;
    min-height:28px;
    padding:0 11px;
    border-radius:999px;
    background:rgba(17,17,17,.90);
    color:#fff;
    display:flex;
    align-items:center;
    font-size:9px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.4px;
}

.totem-produto-info{
    padding:16px;
}

.totem-produto-codigo{
    min-height:12px;
    margin-bottom:5px;
    color:#999;
    font-size:9px;
    line-height:1.3;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.totem-produto-info h3{
    color:#222;
    font-size:17px;
    line-height:1.28;
    font-weight:900;
}

.totem-produto-info p{
    margin-top:8px;
    color:#888;
    font-size:11px;
    line-height:1.5;
    display:-webkit-box;
    overflow:hidden;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
}

.totem-produto-rodape{
    min-height:46px;
    margin-top:18px;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:12px;
}

.totem-produto-preco{
    min-width:0;
}

.totem-produto-preco > span{
    display:block;
    margin-bottom:4px;
    color:#999;
    font-size:9px;
    font-weight:700;
}

.totem-produto-preco strong{
    display:block;
    color:#111;
    font-size:20px;
    line-height:1;
    font-weight:900;
    white-space:nowrap;
}

.totem-produto-adicionar{
    width:40px;
    height:40px;
    min-width:40px;
    border-radius:13px;
    background:#111;
    color:#d7ff3f;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    transition:.18s ease;
}

.totem-produto:not(.sem-estoque):hover .totem-produto-adicionar{
    background:#d7ff3f;
    color:#111;
}

.totem-vazio,
.totem-busca-vazia{
    width:100%;
    padding:70px 25px;
    border:1px solid #e4e4e4;
    border-radius:26px;
    background:#fff;
    text-align:center;
}

.totem-vazio-icone{
    width:64px;
    height:64px;
    margin:0 auto 16px;
    border-radius:20px;
    background:#111;
    color:#d7ff3f;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.totem-vazio h2,
.totem-busca-vazia h2{
    color:#222;
    font-size:20px;
    line-height:1.2;
    font-weight:900;
}

.totem-vazio p,
.totem-busca-vazia p{
    max-width:420px;
    margin:8px auto 0;
    color:#999;
    font-size:12px;
    line-height:1.5;
}

.totem-modal-fundo{
    position:fixed;
    inset:0;
    z-index:200;
    background:rgba(0,0,0,.60);
    backdrop-filter:blur(4px);
    -webkit-backdrop-filter:blur(4px);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:.22s ease;
}

.totem-modal-fundo.active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.totem-modal-produto{
    position:fixed;
    inset:0;
    z-index:210;
    padding:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:.22s ease;
}

.totem-modal-produto.active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.totem-modal-produto-area{
    width:100%;
    max-width:620px;
    max-height:calc(100vh - 48px);
    overflow:hidden;
    border-radius:30px;
    background:#fff;
    color:#111;
    box-shadow:0 30px 90px rgba(0,0,0,.35);
    display:flex;
    flex-direction:column;
    transform:translateY(25px) scale(.985);
    transition:transform .24s ease;
}

.totem-modal-produto.active .totem-modal-produto-area{
    transform:translateY(0) scale(1);
}

.totem-modal-produto-topo{
    flex:0 0 auto;
    padding:20px 22px;
    border-bottom:1px solid #eee;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.totem-modal-produto-topo > div{
    min-width:0;
}

.totem-modal-produto-topo span{
    display:block;
    margin-bottom:3px;
    color:#999;
    font-size:9px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.8px;
}

.totem-modal-produto-topo h2{
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    color:#111;
    font-size:23px;
    line-height:1.15;
    font-weight:900;
}

.totem-modal-produto-topo button{
    width:44px;
    height:44px;
    min-width:44px;
    border-radius:14px;
    background:#f0f0f0;
    color:#555;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    transition:.18s ease;
}

.totem-modal-produto-topo button:hover{
    background:#e5e5e5;
    color:#111;
}

.totem-modal-produto-conteudo{
    flex:1;
    min-height:0;
    overflow-y:auto;
    padding:22px;
    overscroll-behavior:contain;
}

.totem-modal-produto-imagem{
    width:100%;
    max-height:330px;
    margin-bottom:18px;
    overflow:hidden;
    border-radius:22px;
    background:#f1f1f1;
    display:flex;
    align-items:center;
    justify-content:center;
}

.totem-modal-produto-imagem:empty{
    display:none;
}

.totem-modal-produto-imagem img{
    width:100%;
    max-height:330px;
    object-fit:contain;
}

.totem-modal-produto-imagem .totem-produto-sem-imagem{
    min-height:250px;
}

.totem-modal-produto-descricao{
    color:#777;
    font-size:13px;
    line-height:1.6;
    font-weight:600;
}

.totem-modal-produto-descricao:empty{
    display:none;
}

.totem-modal-produto-label{
    margin-bottom:10px;
    color:#555;
    font-size:11px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.4px;
}

.totem-modal-produto-variacoes{
    margin-top:22px;
}

.totem-modal-produto-variacoes-lista{
    display:flex;
    flex-direction:column;
    gap:9px;
}

.totem-variacao{
    position:relative;
    width:100%;
    min-height:58px;
    padding:12px 15px;
    border:1px solid #e1e1e1;
    border-radius:17px;
    background:#fafafa;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    cursor:pointer;
    transition:.18s ease;
}

.totem-variacao:hover{
    border-color:#cfcfcf;
    background:#fff;
}

.totem-variacao.active,
.totem-variacao.selecionada{
    border-color:#111;
    background:#f7f7f7;
    box-shadow:0 0 0 2px rgba(17,17,17,.05);
}

.totem-variacao-info{
    min-width:0;
}

.totem-variacao-info strong{
    display:block;
    color:#222;
    font-size:14px;
    line-height:1.3;
    font-weight:900;
}

.totem-variacao-info span{
    display:block;
    margin-top:4px;
    color:#888;
    font-size:11px;
    font-weight:700;
}

.totem-variacao-preco{
    color:#111;
    font-size:14px;
    font-weight:900;
    white-space:nowrap;
}

.totem-variacao-check{
    width:25px;
    height:25px;
    min-width:25px;
    border:2px solid #ccc;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.totem-variacao.active .totem-variacao-check,
.totem-variacao.selecionada .totem-variacao-check{
    border-color:#111;
    background:#111;
}

.totem-variacao.active .totem-variacao-check::after,
.totem-variacao.selecionada .totem-variacao-check::after{
    content:"";
    width:9px;
    height:9px;
    border-radius:50%;
    background:#d7ff3f;
}

.totem-modal-produto-quantidade-area{
    margin-top:24px;
}

.totem-quantidade{
    width:170px;
    height:58px;
    border:1px solid #dedede;
    border-radius:18px;
    background:#f7f7f7;
    display:grid;
    grid-template-columns:52px 1fr 52px;
    align-items:center;
}

.totem-quantidade button{
    width:42px;
    height:42px;
    margin:auto;
    border-radius:13px;
    background:#fff;
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    box-shadow:0 3px 10px rgba(0,0,0,.05);
}

.totem-quantidade button:active{
    transform:scale(.95);
}

.totem-quantidade strong{
    text-align:center;
    color:#111;
    font-size:18px;
    font-weight:900;
}

.totem-modal-produto-rodape{
    flex:0 0 auto;
    padding:18px 22px 22px;
    border-top:1px solid #eee;
    background:#fff;
}

.totem-modal-produto-total{
    margin-bottom:13px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.totem-modal-produto-total span{
    color:#777;
    font-size:12px;
    font-weight:800;
}

.totem-modal-produto-total strong{
    color:#111;
    font-size:23px;
    font-weight:900;
}

.totem-modal-produto-adicionar{
    width:100%;
    min-height:62px;
    padding:0 20px;
    border-radius:19px;
    background:#111;
    color:#d7ff3f;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:11px;
    font-size:14px;
    font-weight:900;
    transition:.18s ease;
}

.totem-modal-produto-adicionar:hover{
    background:#1b1b1b;
}

.totem-modal-produto-adicionar:active{
    transform:scale(.985);
}

.totem-modal-produto-adicionar:disabled{
    background:#ddd;
    color:#999;
    cursor:not-allowed;
}

.totem-carrinho-fundo{
    position:fixed;
    inset:0;
    z-index:300;
    background:rgba(0,0,0,.58);
    backdrop-filter:blur(4px);
    -webkit-backdrop-filter:blur(4px);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:.22s ease;
}

.totem-carrinho-fundo.active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.totem-carrinho{
    position:fixed;
    top:0;
    right:0;
    z-index:310;
    width:100%;
    max-width:470px;
    height:100dvh;
    padding:22px;
    background:#fff;
    color:#111;
    box-shadow:-22px 0 60px rgba(0,0,0,.22);
    display:flex;
    flex-direction:column;
    transform:translateX(105%);
    transition:transform .28s ease;
}

.totem-carrinho.active{
    transform:translateX(0);
}

.totem-carrinho-cabecalho{
    flex:0 0 auto;
    padding-bottom:18px;
    border-bottom:1px solid #eee;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
}

.totem-carrinho-cabecalho span{
    display:block;
    margin-bottom:3px;
    color:#999;
    font-size:9px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.8px;
}

.totem-carrinho-cabecalho h2{
    color:#111;
    font-size:24px;
    line-height:1.15;
    font-weight:900;
}

.totem-carrinho-cabecalho button{
    width:44px;
    height:44px;
    min-width:44px;
    border-radius:14px;
    background:#f0f0f0;
    color:#555;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
}

.totem-carrinho-cabecalho button:hover{
    background:#e5e5e5;
    color:#111;
}

.totem-carrinho-itens{
    flex:1;
    min-height:0;
    overflow-y:auto;
    padding:17px 2px 17px 0;
    overscroll-behavior:contain;
}

.totem-carrinho-item{
    width:100%;
    margin-bottom:10px;
    padding:14px;
    border:1px solid #e5e5e5;
    border-radius:18px;
    background:#fafafa;
    display:flex;
    align-items:center;
    gap:12px;
}

.totem-carrinho-item:last-child{
    margin-bottom:0;
}

.totem-carrinho-item-imagem{
    width:58px;
    height:58px;
    min-width:58px;
    overflow:hidden;
    border-radius:14px;
    background:#eee;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#bbb;
}

.totem-carrinho-item-imagem img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.totem-carrinho-item-info{
    min-width:0;
    flex:1;
}

.totem-carrinho-item-info strong{
    display:block;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    color:#222;
    font-size:13px;
    line-height:1.3;
    font-weight:900;
}

.totem-carrinho-item-info span{
    display:block;
    margin-top:4px;
    color:#888;
    font-size:10px;
    line-height:1.4;
    font-weight:700;
}

.totem-carrinho-item-total{
    margin-top:6px;
    color:#111 !important;
    font-size:12px !important;
    font-weight:900 !important;
}

.totem-carrinho-remover{
    width:38px;
    height:38px;
    min-width:38px;
    border-radius:12px;
    background:#fff;
    color:#999;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    box-shadow:0 3px 10px rgba(0,0,0,.04);
}

.totem-carrinho-remover:hover{
    background:#fceeef;
    color:#DC3546;
}

.totem-carrinho-vazio{
    flex:1;
    min-height:280px;
    padding:35px 20px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.totem-carrinho-vazio > div{
    width:68px;
    height:68px;
    margin-bottom:16px;
    border-radius:21px;
    background:#111;
    color:#d7ff3f;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:23px;
}

.totem-carrinho-vazio h3{
    color:#222;
    font-size:19px;
    font-weight:900;
}

.totem-carrinho-vazio p{
    max-width:260px;
    margin-top:7px;
    color:#999;
    font-size:12px;
    line-height:1.5;
}

.totem-carrinho-rodape{
    flex:0 0 auto;
    padding-top:18px;
    border-top:1px solid #eee;
}

.totem-carrinho-resumo{
    margin-bottom:14px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.totem-carrinho-resumo span{
    color:#777;
    font-size:12px;
    font-weight:800;
}

.totem-carrinho-resumo strong{
    color:#111;
    font-size:24px;
    font-weight:900;
}

.totem-carrinho-finalizar{
    width:100%;
    min-height:64px;
    padding:0 20px;
    border-radius:19px;
    background:#111;
    color:#d7ff3f;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    font-size:14px;
    font-weight:900;
    transition:.18s ease;
}

.totem-carrinho-finalizar:hover{
    background:#1c1c1c;
}

.totem-carrinho-finalizar:active{
    transform:scale(.985);
}

.totem-carrinho-finalizar:disabled{
    background:#ddd;
    color:#999;
    cursor:not-allowed;
}

@media(max-width:1200px){

    .totem-produtos{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }

}

@media(max-width:900px){

    .totem-topo{
        padding:12px 16px;
    }

    .totem-content{
        padding:18px 16px 45px;
    }

    .totem-apresentacao{
        min-height:170px;
        padding:30px;
        border-radius:26px;
    }

    .totem-apresentacao h1{
        font-size:32px;
    }

    .totem-apresentacao-icone{
        width:78px;
        height:78px;
        min-width:78px;
        border-radius:24px;
        font-size:31px;
    }

    .totem-produtos{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:13px;
    }

}

@media(max-width:650px){

    .totem-topo{
        padding:11px 13px;
    }

    .totem-topo-area{
        min-height:54px;
    }

    .totem-topo-logo{
        width:50px;
        height:50px;
        min-width:50px;
        border-radius:16px;
    }

    .totem-topo-empresa{
        gap:10px;
    }

    .totem-topo-nome{
        max-width:210px;
        font-size:16px;
    }

    .totem-topo-status{
        margin-top:4px;
        font-size:9px;
    }

    .totem-topo-status span{
        width:7px;
        height:7px;
        min-width:7px;
    }

    .totem-topo-carrinho{
        width:50px;
        height:50px;
        min-width:50px;
        border-radius:16px;
        font-size:18px;
    }

    .totem-content{
        padding:14px 12px 40px;
    }

    .totem-apresentacao{
        min-height:0;
        margin-bottom:16px;
        padding:25px 21px;
        border-radius:23px;
    }

    .totem-apresentacao-tag{
        min-height:26px;
        margin-bottom:11px;
        padding:0 11px;
        font-size:8px;
    }

    .totem-apresentacao h1{
        max-width:300px;
        font-size:27px;
        letter-spacing:-.5px;
    }

    .totem-apresentacao p{
        max-width:330px;
        margin-top:9px;
        font-size:12px;
        line-height:1.5;
    }

    .totem-apresentacao-icone{
        display:none;
    }

    .totem-busca{
        margin-bottom:14px;
    }

    .totem-busca input{
        height:55px;
        padding-left:48px;
        border-radius:17px;
        font-size:14px;
    }

    .totem-busca > i{
        left:18px;
        font-size:14px;
    }

    .totem-busca button{
        width:37px;
        height:37px;
        right:9px;
        border-radius:11px;
    }

    .totem-categorias{
        gap:7px;
        margin-bottom:23px;
    }

    .totem-categoria{
        min-height:40px;
        padding:0 16px;
        font-size:11px;
    }

    .totem-grupo{
        margin-bottom:34px;
    }

    .totem-grupo-cabecalho{
        margin-bottom:12px;
    }

    .totem-grupo-cabecalho h2{
        font-size:20px;
    }

    .totem-grupo-quantidade{
        font-size:9px;
    }

    .totem-produtos{
        gap:9px;
    }

    .totem-produto{
        border-radius:18px;
    }

    .totem-produto-info{
        padding:12px;
    }

    .totem-produto-info h3{
        font-size:14px;
    }

    .totem-produto-info p{
        font-size:10px;
    }

    .totem-produto-rodape{
        min-height:39px;
        margin-top:13px;
    }

    .totem-produto-preco strong{
        font-size:16px;
    }

    .totem-produto-preco > span{
        font-size:8px;
    }

    .totem-produto-adicionar{
        width:34px;
        height:34px;
        min-width:34px;
        border-radius:11px;
        font-size:11px;
    }

    .totem-vazio,
    .totem-busca-vazia{
        padding:55px 20px;
        border-radius:21px;
    }

    .totem-modal-produto{
        padding:0;
        align-items:flex-end;
    }

    .totem-modal-produto-area{
        max-width:none;
        max-height:92dvh;
        border-radius:28px 28px 0 0;
        transform:translateY(100%);
    }

    .totem-modal-produto.active .totem-modal-produto-area{
        transform:translateY(0);
    }

    .totem-modal-produto-topo{
        padding:18px;
    }

    .totem-modal-produto-topo h2{
        font-size:20px;
    }

    .totem-modal-produto-conteudo{
        padding:18px;
    }

    .totem-modal-produto-imagem{
        max-height:260px;
        border-radius:19px;
    }

    .totem-modal-produto-imagem img{
        max-height:260px;
    }

    .totem-modal-produto-rodape{
        padding:15px 18px 18px;
    }

    .totem-modal-produto-adicionar{
        min-height:58px;
        border-radius:17px;
    }

    .totem-carrinho{
        max-width:none;
        padding:18px;
    }

}

@media(max-width:420px){

    .totem-topo-nome{
        max-width:165px;
        font-size:15px;
    }

    .totem-topo-logo{
        width:46px;
        height:46px;
        min-width:46px;
        border-radius:14px;
    }

    .totem-topo-carrinho{
        width:46px;
        height:46px;
        min-width:46px;
        border-radius:14px;
    }

    .totem-apresentacao{
        padding:22px 18px;
    }

    .totem-apresentacao h1{
        font-size:24px;
    }

    .totem-produto-info p{
        display:none;
    }

    .totem-produto-codigo{
        font-size:8px;
    }

    .totem-produto-preco strong{
        font-size:15px;
    }

    .totem-produto-info{
        padding:10px;
    }

    .totem-produto-adicionar{
        width:32px;
        height:32px;
        min-width:32px;
    }

    .totem-carrinho-item{
        padding:11px;
    }

    .totem-carrinho-item-imagem{
        width:50px;
        height:50px;
        min-width:50px;
    }

}