/* ── Loja por Listing ── */
.mll-loja { font-family: inherit; }

.mll-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 80px;
}

.mll-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}
.mll-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,.13);
}

.mll-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.mll-card-body { padding: 14px 16px 16px; }
.mll-card-body h3 { margin: 0 0 6px; font-size: 1rem; color: #1a1a1a; }
.mll-desc { font-size: .85rem; color: #555; margin: 0 0 10px; }

.mll-preco {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0d6e3e;
    margin: 0 0 12px;
}

/* Botões */
.mll-btn-add {
    width: 100%;
    padding: 10px;
    background: #0d6e3e;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: .9rem;
    font-weight: 600;
    transition: background .2s;
}
.mll-btn-add:hover { background: #0a5430; }

.mll-btn-zap {
    width: 100%;
    padding: 12px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 10px;
    transition: background .2s;
}
.mll-btn-zap:hover { background: #1ebe5d; }

/* Carrinho flutuante */
.mll-carrinho {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,.18);
    z-index: 9999;
    overflow: hidden;
    transition: height .3s ease;
}

.mll-carrinho-header {
    background: #0d6e3e;
    color: #fff;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
}
.mll-carrinho-header button {
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    line-height: 1;
}

.mll-carrinho-body { padding: 12px 16px; }

.mll-carrinho-body ul {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 200px;
    overflow-y: auto;
}

.mll-carrinho-body li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: .85rem;
    color: #333;
}

.mll-remove-item {
    background: none;
    border: none;
    color: #c0392b;
    cursor: pointer;
    font-size: 1rem;
    padding: 0 4px;
}

.mll-total {
    text-align: right;
    font-size: .95rem;
    margin: 10px 0 0;
    color: #1a1a1a;
}
.mll-total strong { color: #0d6e3e; }

/* Carrinho recolhido */
.mll-carrinho.recolhido .mll-carrinho-body { display: none; }

/* Badge contador */
.mll-carrinho-header .mll-badge {
    background: #FFD700;
    color: #1a1a1a;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    margin-left: 6px;
}

@media (max-width: 480px) {
    .mll-carrinho { width: calc(100% - 32px); right: 16px; }
}
